





  .card, .card-body {
    overflow: hidden;
  }
  .card-img-top2 {
    height: 300px !important;
    aspect-ratio: 1/1;
    object-fit: cover;
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: 0.5s ease-in-out;
    transform: translateX(10%);
    
  }
  
  .card-img-top {
    height: 300px !important;
    aspect-ratio: 1/1;
    object-fit: cover;
    position: relative;
    opacity: 1;
    transition: 0.3s ease-in-out;
  }
.card:hover .card-img-top {
  opacity: 0;
  transform: translateX(10%);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

  .card:hover .card-img-top2 {
    display: block;
    opacity: 1;
    transform: translateX(0%);
  }

  .card-body{
    padding:30px !important;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .card-body  .btn-orange{
    width: 100%;
    border: 1px solid #f58634;
    border-radius: 0;
    color:#f58634 ;
  }

  .card-body  .btn-orange:hover{
    background: #f58634;
    color: white;
  }


  .image-container{
    overflow: hidden;
    position: relative;
  }
  @media(max-width:1400px){
  .card-body .btn-orange{
    padding: 0.25em 1.25em;
  }
  }
  
  /* For tablets */
  @media (min-width: 768px) and (max-width: 991px) {
    .card-body .btn-orange{
      padding: 0.25em 0.5em;
    }
  }
  

  /*  ESHOP slider  */

  .product-card-wrapper {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
}



.product-card-image {
  object-fit: cover;
  height: 220px;
  width: 100%;
  border-bottom: 1px solid #f0f0f0;
}

.product-card-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.product-card-body{
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.product-card-price {
  font-size: 1rem;
  color: #f58634 !important;
}



/* eshop */
/* Container for the main product image */


/* Thumbnail container */
#thumbnailContainer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 500px;
  overflow-y: auto;
}

/* Thumbnail images */
#thumbnailContainer img {
  width: 100%;
  cursor: pointer;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
  object-fit: cover;
  max-height: 80px;
}

#thumbnailContainer img:hover,
#thumbnailContainer img.active {
  border-color: #f58634;  /* Orange highlight */
}

/* Product title */
.product-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #222;
}

/* Price */
.price {
  font-size: 1.5rem;
  font-weight: 600;
  color: #f58634;
  margin-bottom: 1rem;
}

/* Delivery and Transit paragraphs */
.delivery,
.transit {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0.3rem;
}

/* Buttons container */
.buttons {
  margin-top: 1.5rem;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Button styles */
#inquireBtn,
#brochureBtn {
  flex: 1 1 48%;
  text-align: center;
  padding: 10px 0;
  border: 2px solid #f58634;
  border-radius: 6px;
  font-weight: 600;
  color: #f58634;
  background-color: transparent;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-decoration: none;
}

#inquireBtn:hover,
#brochureBtn:hover {
  color: #fff;
  background-color: #f58634;
  border-color: #f58634;
  text-decoration: none;
}


  /*  slider  */

  .swiper, .swiper2, .swiper3{
    position: relative;
  }


  .swiper-button-next,
  .swiper-button-prev      
  {
    position: static !important;
    transform: translate(0, 0);
    margin: 10px !important;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;

  }

  .swiper-button-next i::before,
  .swiper-button-prev i::before,
  .swiper-button-next1 i::before,
  .swiper-button-prev1 i::before,  
  .swiper-button-next2 i::before,
  .swiper-button-prev2 i::before
  {     

    color: #f58634 !important;
    font-size: 24px;  }

.swiper-button-next::after, .swiper-button-prev::after{
  display: none;
}


/*  swiper 3  */

.swiper3 .swiper-slide img{
  aspect-ratio: 16/9;
  height: 100px;
  object-fit: contain;
}
/* ------------------ single page product ------------------- */

   
    @media (max-width: 767px) {
      .product-title {
        font-size: 1.5rem;
      }

      .product-price {
        font-size: 1.25rem;
      }
    }


    /*  contact page  */
    
.contact-form-container {
  background: #fff;
  max-width: 700px;
  margin: auto;
  padding: 30px 40px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
  margin-bottom: 25px;
  font-size: 24px;
  color: #333;
  text-align: center;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 500;
  color: #444;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #007BFF;
  outline: none;
}

textarea {
  resize: vertical;
}

.submit-button-container {
  text-align: center;
  margin-top: 20px;
}

.submit-button {
  padding: 12px 24px;
  background-color: #007BFF;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.submit-button:hover {
  background-color: #0056b3;
}

